你可以将程序产生的数据保存在文件中,也可以从文件中读取数据。

1.2.8.1 文件读取

   想要读取文件中的数据,首先要打开文件(文件已存在)。

open(filename, mode)
mode:模式
    r :以只读方式打开
    rw:以读写方式打开

示例:

f = open ( 'test.py', 'r')

注意
   只能打开下载到板子中的文件。
示例:

print(f.read())

   读取完成后,记得使用close()关闭文件,释放资源。
示例:

f.close()

综合示例:

>>> f = open('test.py', 'r')
>>> print(f.read())
import time
from machine import Pin
led=Pin(2,Pin.OUT)       

while True:
  led.value(1)            
  time.sleep(0.5)
  led.value(0)           
  time.sleep(0.5)
>>> f.close()

1.2.8.2 文件写入

   向文件中写入数据同样要先打开文件(文件已存在)。

f = open(filename, mode)

   然后向文件中写入数据。

fd.write(str)

示例:

fd.write('hello dfrobot')

   最后不要忘了关闭文件以释放资源。

f.close()

综合示例:

>>> f = open('test.py', 'w')
>>> f.write('#DFRobot')
8
>>> f.close()
>>> f = open('test.py', 'r')
>>> print(f.read())
#DFRobot
>>> f.close()

注意:
   向一个已经存在内容的文件写入数据时,会覆盖原来的内容。

results matching ""

    No results matching ""